home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Index.dxr / 00111.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  831 b   |  39 lines

  1. global endSprite
  2.  
  3. on enterFrame
  4.   roomcontrolinit()
  5.   initroomglobals()
  6.   initcursor()
  7.   repeat with spriteNum = 2 to 40
  8.     if the scoreColor of sprite spriteNum <> 5 then
  9.       set endSprite to spriteNum - 1
  10.       exit repeat
  11.     end if
  12.   end repeat
  13. end
  14.  
  15. on exitFrame
  16.   repeat with spriteNum = 2 to endSprite
  17.     puppetSprite(spriteNum, 1)
  18.   end repeat
  19. end
  20.  
  21. on roomcontrolinit
  22.   global roomcontentsprite, hiliterect, returnflag, timesflag, currlabel
  23.   set roomcontentsprite to 42
  24.   puppetSprite(hiliterect, 1)
  25.   puppetSprite(roomcontentsprite, 1)
  26.   if not returnflag then
  27.     initscrollh()
  28.   end if
  29.   initroomcontrols()
  30.   installselectcontrol(word 1 of the frameLabel)
  31.   set currlabel to word 1 of the frameLabel
  32. end
  33.  
  34. on initroomglobals
  35.   global groomhotlist, groomactslist
  36.   set groomhotlist to []
  37.   set groomactslist to []
  38. end
  39.